home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / nameless.swf / scripts / DefineSprite_1850 / frame_1 / DoAction.as
Encoding:
Text File  |  2011-06-09  |  266 b   |  16 lines

  1. var onEnterFrame = function()
  2. {
  3.    if(_root.lives > 3)
  4.    {
  5.       _root.lives = 3;
  6.    }
  7.    else if(_root.lives <= 0)
  8.    {
  9.       if(_root.gameover._currentframe == 1)
  10.       {
  11.          _root.gameover.play();
  12.       }
  13.    }
  14.    gotoAndStop(_root.lives);
  15. };
  16.